home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 4 / The 640 Meg Shareware Studio CD-ROM Volume IV (Data Express)(1994).ISO / clang / cenvid.zip / HELLO.CMM < prev    next >
Text File  |  1993-07-27  |  209b  |  6 lines

  1. // Hello.cmm: My first Cmm program
  2. Count = 1;  /* Count is how many Cmm programs I've written */
  3. printf("Hello world. This is my %dst Cmm program.\n",Count);
  4. printf("Press any key to quit...");
  5. getch();
  6.